home *** CD-ROM | disk | FTP | other *** search
- //------------------------------------------------------------------------------
- // <autogenerated>
- // This code was generated by a tool.
- // Runtime Version: 1.1.4322.573
- //
- // Changes to this file may cause incorrect behavior and will be lost if
- // the code is regenerated.
- // </autogenerated>
- //------------------------------------------------------------------------------
-
- //
- // Codice sorgente generato automaticamente da wsdl, versione=1.1.4322.573.
- //
- using System.Diagnostics;
- using System.Xml.Serialization;
- using System;
- using System.Web.Services.Protocols;
- using System.ComponentModel;
- using System.Web.Services;
-
-
- /// <remarks/>
- [System.Diagnostics.DebuggerStepThroughAttribute()]
- [System.ComponentModel.DesignerCategoryAttribute("code")]
- [System.Web.Services.WebServiceBindingAttribute(Name="GenericStatsSoap", Namespace="http://www.bigatti.it/namespaces")]
- public class GenericStats : System.Web.Services.Protocols.SoapHttpClientProtocol {
-
- /// <remarks/>
- public GenericStats() {
- this.Url = "http://localhost/MathService/Service1.asmx";
- }
-
- /// <remarks/>
- [System.Web.Services.Protocols.SoapDocumentMethodAttribute("http://www.bigatti.it/namespaces/compute", RequestNamespace="http://www.bigatti.it/namespaces", ResponseNamespace="http://www.bigatti.it/namespaces", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]
- public GenericMathData compute(string valueString) {
- object[] results = this.Invoke("compute", new object[] {
- valueString});
- return ((GenericMathData)(results[0]));
- }
-
- /// <remarks/>
- public System.IAsyncResult Begincompute(string valueString, System.AsyncCallback callback, object asyncState) {
- return this.BeginInvoke("compute", new object[] {
- valueString}, callback, asyncState);
- }
-
- /// <remarks/>
- public GenericMathData Endcompute(System.IAsyncResult asyncResult) {
- object[] results = this.EndInvoke(asyncResult);
- return ((GenericMathData)(results[0]));
- }
- }
-
- /// <remarks/>
- [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.bigatti.it/namespaces")]
- public class GenericMathData {
-
- /// <remarks/>
- public System.Single mean;
-
- /// <remarks/>
- public System.Single standardDeviation;
-
- /// <remarks/>
- public System.Single coefficientOfVariation;
-
- /// <remarks/>
- public int counter;
-
- /// <remarks/>
- public System.Single min;
-
- /// <remarks/>
- public System.Single max;
- }
-